body {
  padding-top: 70px; /* Adjust according to navbar height */
  font-family: 'Arial', sans-serif;
  background: #f8f9fa;
  
}

:root {
    --main-color: #4caf50;
}

/* Custom Styles for NavBar */
.navbar-brand img {
  height: 75px; /* Increase logo height */
  width: auto; /* Maintain aspect ratio */
  transition: height 0.3s; /* Smooth transition */
}

.navbar {
  background: linear-gradient(135deg, #4caf50, #1e88e5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow */
  padding: 0.5rem 1rem; /* Adjust navbar padding */
}

.navbar-nav .nav-link {
  color: #fff; /* Link color */
  font-weight: 500; /* Medium font weight */
  margin-left: 20px; /* Space between links */
}

.navbar-nav .nav-link:hover {
  color: #ff9900; /* Hover color */
}

.navbar-toggler {
  border: none; /* Remove border */
}

.navbar-toggler:focus {
  box-shadow: none; /* Remove focus outline */
}

/* Ensure navbar height remains consistent */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 60px; /* Match logo height */
}

/* End NavBar */

/* Hero Section */
.hero {
  position: relative;
  height: 50vh;
  background: url("../Images/pexels-olly-3760072.jpg") no-repeat center
    center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero .content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ddd;
}


h2 {
  color: #2d6187;
  font-size: 28px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  color: #555;
}


#careers {
  margin-top: 10%;
    margin-bottom: 10%;
}

.success-message {
  display: none;
  color: green;
  margin-top: 10px;
}

.job-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  text-align: left;
}

h2 {
  color: #4caf50;
}

.job-list li {
  background-color: #fff;
  padding: 10px;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

select {
  padding: 10px 15px;
  border: 1px solid #ccc;

}

#req {
  margin-top: 20px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background-color: #2d6187;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

button:hover {
  background-color: #1e4465;
}

.footer {
  background-color: #2d6187;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 10px;
  }

  nav ul li {
    display: block;
    margin: 5px 0;
  }
}



/* Footer Styling */
.footer {
  background: linear-gradient(135deg, #4caf50, #1e88e5);
  color: #f8f9fa;
}

.footer-logo {
  max-width: 200px;
}

.footer-statement {
  font-size: 14px;
  color: #ddd;
  margin-top: 10px;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer ul {
  list-style-type: none;
  padding: 40px 0 0;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}


.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #f8f9fa;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #333 !important;
}

.footer .social-icons {
    padding-top: 40px !important;

}

.footer .social-icons a {
  text-decoration: none;
  color: #f8f9fa;
  font-size: 20px;
}

.footer .social-icons a:hover {
  color: #333 !important;
}

.footer .text-center {
  margin-top: 20px;
  font-size: 14px;
}